body {
  font-family: 'Jost', sans-serif;
  background: #f5f5f5;
  margin: 0; /* ensure no unwanted gap at top */
}

.quote-form-container {
  max-width: 400px;
  background: white;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  margin: auto;
}

.quote-form-container h2 {
  font-weight: bold;
  font-size: 1.25rem;
  margin-bottom: 5px;
}

.quote-form-container p {
  color: #555;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.quote-form-container input,
.quote-form-container select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.quote-form-container button {
  width: 100%;
  padding: 12px;
  background: linear-gradient(90deg, #000000, #333333); /* black gradient */
  color: white;
  font-size: 1rem;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.quote-form-container button:hover {
  background: linear-gradient(90deg, #111111, #444444); /* darker black gradient on hover */
}

.quote-form-container small {
  display: block;
  text-align: center;
  font-size: 0.8rem;
  color: #666;
  margin-top: 10px;
}

@media (max-width: 480px) {
  .quote-form-container {
    padding: 15px;
  }
}
